Add a new private API to GtkApplication akin to
gtk_widget_insert_action_group().
We'll use this to insert a few extra actions at the app level with a
separate namespace for the special items in the Mac OS application menu.
https://bugzilla.gnome.org/show_bug.cgi?id=720552
return application->priv->muxer;
}
+void
+gtk_application_insert_action_group (GtkApplication *application,
+ const gchar *name,
+ GActionGroup *action_group)
+{
+ gtk_action_muxer_insert (application->priv->muxer, name, action_group);
+}
+
void
gtk_application_handle_window_realize (GtkApplication *application,
GtkWindow *window)
gpointer user_data);
G_GNUC_INTERNAL
GtkActionMuxer * gtk_application_get_action_muxer (GtkApplication *application);
+G_GNUC_INTERNAL
+void gtk_application_insert_action_group (GtkApplication *application,
+ const gchar *name,
+ GActionGroup *action_group);
#define GTK_TYPE_APPLICATION_IMPL (gtk_application_impl_get_type ())